My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/stashy/default.nix

31 lines
708 B

{ lib
, buildPythonPackage
, decorator
, fetchPypi
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "stashy";
version = "0.7";
disabled = pythonOlder "3.4";
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 ];
};
}