aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/ajpy
diff options
context:
space:
mode:
authory0no <yoann.onoditbiot@synhack.fr>2018-02-06 11:32:44 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-03-19 11:40:57 +0100
commita15544d5f5103c5a6e8bb0fabbe35669b2ede75f (patch)
tree600de9f04b929c196a816e2edfe0ed27c77a53ae /pkgs/development/python-modules/ajpy
parentc9bbf071bdb79270b0028885dcea3783d99b611b (diff)
pythonPackages.ajpy: init at 0.0.2
Diffstat (limited to 'pkgs/development/python-modules/ajpy')
-rw-r--r--pkgs/development/python-modules/ajpy/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/ajpy/default.nix b/pkgs/development/python-modules/ajpy/default.nix
new file mode 100644
index 00000000000..9d1905fe914
--- /dev/null
+++ b/pkgs/development/python-modules/ajpy/default.nix
@@ -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 ];
+ };
+}