blob: 6ae4a11322f979fbc91a0d9b11632babce64e828 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "ajpy";
version = "0.0.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "173wm207zyi86m2ms7vscakdi4mmjqfxqsdx1gn0j9nn0gsf241h";
};
# ajpy doesn't have tests
doCheck = false;
meta = with lib; {
description = "AJP package crafting library";
homepage = "https://github.com/hypn0s/AJPy/";
license = licenses.lgpl2;
maintainers = with maintainers; [ y0no ];
};
}
|