nixpkgs/pkgs/development/python-modules/stashy/default.nix
Alexis Hildebrandt bf995e3641 treewide: Remove ending period from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
2024-06-09 23:04:51 +02:00

35 lines
702 B
Nix

{
lib,
buildPythonPackage,
decorator,
fetchPypi,
requests,
}:
buildPythonPackage rec {
pname = "stashy";
version = "0.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1x89zazwxnsx6rdfw8nfr372hj4sk8nrcs5hsjxpcxcva0calrcr";
};
propagatedBuildInputs = [
decorator
requests
];
# Tests require internet connection
doCheck = false;
pythonImportsCheck = [ "stashy" ];
meta = with lib; {
description = "Python client for the Atlassian Bitbucket Server (formerly known as Stash) REST API";
homepage = "https://github.com/cosmin/stashy";
license = licenses.asl20;
maintainers = with maintainers; [ mupdt ];
};
}