forked from mirrors/nixpkgs
pythonPackages.prefixed: init at 0.3.2
This commit is contained in:
parent
e05b158d7d
commit
8ba95cee9f
26
pkgs/development/python-modules/prefixed/default.nix
Normal file
26
pkgs/development/python-modules/prefixed/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "prefixed";
|
||||
version = "0.3.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "ca48277ba5fa8346dd4b760847da930c7b84416387c39e93affef086add2c029";
|
||||
};
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "prefixed" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Prefixed alternative numeric library";
|
||||
homepage = "https://github.com/Rockhopper-Technologies/prefixed";
|
||||
license = with licenses; [ mpl20 ];
|
||||
maintainers = with maintainers; [ veprbl ];
|
||||
};
|
||||
}
|
|
@ -5546,6 +5546,8 @@ in {
|
|||
|
||||
precis-i18n = callPackage ../development/python-modules/precis-i18n { };
|
||||
|
||||
prefixed = callPackage ../development/python-modules/prefixed { };
|
||||
|
||||
pre-commit = callPackage ../development/python-modules/pre-commit { };
|
||||
|
||||
pre-commit-hooks = callPackage ../development/python-modules/pre-commit-hooks { };
|
||||
|
|
Loading…
Reference in a new issue