pythonPackages.prefixed: init at 0.3.2

This commit is contained in:
Dmitry Kalinkin 2021-07-20 22:03:13 -04:00
parent e05b158d7d
commit 8ba95cee9f
No known key found for this signature in database
GPG key ID: 5157B3EC8B2CA333
2 changed files with 28 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };