mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
pythonPackages.pyprind: init at 2.11.2
This commit is contained in:
parent
2137f5b7c0
commit
8ce4aa2e42
28
pkgs/development/python-modules/pyprind/default.nix
Normal file
28
pkgs/development/python-modules/pyprind/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv, fetchPypi, buildPythonPackage
|
||||||
|
, psutil
|
||||||
|
, pytest }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "PyPrind";
|
||||||
|
version = "2.11.2";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0xg6m5hr33h9bdlrr42kc58jm2m87a9zsagy7n2m4n407d2snv64";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ psutil ];
|
||||||
|
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
py.test tests
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Python Progress Bar and Percent Indicator Utility";
|
||||||
|
homepage = https://github.com/rasbt/pyprind;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ jfrankenau ];
|
||||||
|
};
|
||||||
|
}
|
@ -4091,6 +4091,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pyprind = callPackage ../development/python-modules/pyprind { };
|
||||||
|
|
||||||
python-axolotl = callPackage ../development/python-modules/python-axolotl { };
|
python-axolotl = callPackage ../development/python-modules/python-axolotl { };
|
||||||
|
|
||||||
python-axolotl-curve25519 = callPackage ../development/python-modules/python-axolotl-curve25519 { };
|
python-axolotl-curve25519 = callPackage ../development/python-modules/python-axolotl-curve25519 { };
|
||||||
|
Loading…
Reference in New Issue
Block a user