depot/third_party/nixpkgs/pkgs/development/python-modules/stashy/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

32 lines
733 B
Nix

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