My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/ajpy/default.nix

21 lines
480 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "ajpy";
version = "0.0.5";
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 ];
};
}