mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.ajpy: init at 0.0.2
This commit is contained in:
parent
c9bbf071bd
commit
a15544d5f5
2 changed files with 23 additions and 0 deletions
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 { };
|
aiohttp-jinja2 = callPackage ../development/python-modules/aiohttp-jinja2 { };
|
||||||
|
|
||||||
|
ajpy = callPackage ../development/python-modules/ajpy { };
|
||||||
|
|
||||||
alabaster = callPackage ../development/python-modules/alabaster {};
|
alabaster = callPackage ../development/python-modules/alabaster {};
|
||||||
|
|
||||||
alembic = callPackage ../development/python-modules/alembic {};
|
alembic = callPackage ../development/python-modules/alembic {};
|
||||||
|
|
Loading…
Reference in a new issue