mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
pythonPackages.pyct: init at 0.4.6
This commit is contained in:
parent
19df1a4f29
commit
1a2eae5610
36
pkgs/development/python-modules/pyct/default.nix
Normal file
36
pkgs/development/python-modules/pyct/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue