pythonPackages.pyct: init at 0.4.6

This commit is contained in:
Chris Ostrouchov 2019-02-24 10:23:15 -05:00
parent 19df1a4f29
commit 1a2eae5610
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchPypi
, param
, pyyaml
, requests
, pytest
}:
buildPythonPackage rec {
pname = "pyct";
version = "0.4.6";
src = fetchPypi {
inherit pname version;
sha256 = "df7b2d29f874cabdbc22e4f8cba2ceb895c48aa33da4e0fe679e89873e0a4c6e";
};
checkInputs = [ pytest ];
propagatedBuildInputs = [
param
pyyaml
requests
];
checkPhase = ''
pytest
'';
meta = with lib; {
description = "Cli for python common tasks for users";
homepage = https://github.com/pyviz/pyct;
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -3679,6 +3679,8 @@ in {
pycryptopp = callPackage ../development/python-modules/pycryptopp { };
pyct = callPackage ../development/python-modules/pyct { };
pycups = callPackage ../development/python-modules/pycups { };
pycurl = callPackage ../development/python-modules/pycurl { };