python3Packages.prefixed: init at 0.3.2

rlvm
Simon Bruder 2021-07-21 20:31:47 +02:00
parent daa5967b81
commit 35e29813a6
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
2 changed files with 24 additions and 0 deletions

View File

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

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