depot/third_party/nixpkgs/pkgs/development/python-modules/openerz-api/default.nix
Default email 2189cff663 Project import generated by Copybara.
GitOrigin-RevId: 1fe6ed37fd9beb92afe90671c0c2a662a03463dd
2021-04-24 22:57:28 -05:00

39 lines
765 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, requests
, testfixtures
}:
buildPythonPackage rec {
pname = "openerz-api";
version = "0.1.0";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "misialq";
repo = pname;
rev = "v${version}";
sha256 = "10kxsmaz2rn26jijaxmdmhx8vjdz8hrhlrvd39gc8yvqbjwhi3nw";
};
propagatedBuildInputs = [
requests
];
checkInputs = [
pytestCheckHook
testfixtures
];
pythonImportsCheck = [ "openerz_api" ];
meta = with lib; {
description = "Python module to interact with the OpenERZ API";
homepage = "https://github.com/misialq/openerz-api";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}