mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-05-18 13:16:01 +00:00
pythonPackages.pyct: init at 0.4.6
This commit is contained in:
parent
19df1a4f29
commit
1a2eae5610
2 changed files with 38 additions and 0 deletions
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 { };
|
pycryptopp = callPackage ../development/python-modules/pycryptopp { };
|
||||||
|
|
||||||
|
pyct = callPackage ../development/python-modules/pyct { };
|
||||||
|
|
||||||
pycups = callPackage ../development/python-modules/pycups { };
|
pycups = callPackage ../development/python-modules/pycups { };
|
||||||
|
|
||||||
pycurl = callPackage ../development/python-modules/pycurl { };
|
pycurl = callPackage ../development/python-modules/pycurl { };
|
||||||
|
|
Loading…
Add table
Reference in a new issue