pythonPackages.ajpy: init at 0.0.2
This commit is contained in:
parent
c9bbf071bd
commit
a15544d5f5
21
pkgs/development/python-modules/ajpy/default.nix
Normal file
21
pkgs/development/python-modules/ajpy/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user