python3Packages.prefixed: init at 0.3.2
This commit is contained in:
parent
daa5967b81
commit
35e29813a6
|
@ -20,6 +20,8 @@
|
|||
packageOverrides = final: prev:
|
||||
{
|
||||
deezer-py = callPythonPackage ./python-modules/deezer-py { };
|
||||
|
||||
prefixed = callPythonPackage ./python-modules/prefixed { };
|
||||
};
|
||||
};
|
||||
python3Packages = prev.recurseIntoAttrs final.python3.pkgs;
|
||||
|
|
22
python-modules/prefixed/default.nix
Normal file
22
python-modules/prefixed/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "prefixed";
|
||||
version = "0.3.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0af0sanqdw7ymy9rxhw7cd0q8yqcjgd4f23n9gfld0zslmxjfj6a";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "A prefixed alternative numeric library";
|
||||
homepage = "https://github.com/Rockhopper-Technologies/prefixed";
|
||||
license = licenses.mpl20;
|
||||
maintainers = with maintainers; [ sbruder ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue