pythonPackages.ajpy: init at 0.0.2

This commit is contained in:
y0no 2018-02-06 11:32:44 +01:00 committed by Robert Schütz
parent c9bbf071bd
commit a15544d5f5
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "ajpy";
version = "0.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "740e7daf728ba58dabaf4af2c4305262eb207a6e41791424a146a21396ceb9ad";
};
# ajpy doesn't have tests
doCheck = false;
meta = with stdenv.lib; {
description = "AJP package crafting library";
homepage = "https://github.com/hypn0s/AJPy/";
license = licenses.lgpl2;
maintainers = with maintainers; [ y0no ];
};
}

View file

@ -452,6 +452,8 @@ in {
aiohttp-jinja2 = callPackage ../development/python-modules/aiohttp-jinja2 { };
ajpy = callPackage ../development/python-modules/ajpy { };
alabaster = callPackage ../development/python-modules/alabaster {};
alembic = callPackage ../development/python-modules/alembic {};