1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-15 00:54:46 +00:00
nixpkgs/pkgs/development/python-modules/ajpy/default.nix

22 lines
490 B
Nix
Raw Normal View History

2018-02-06 10:32:44 +00:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "ajpy";
2020-05-08 22:47:08 +01:00
version = "0.0.5";
2018-02-06 10:32:44 +00:00
src = fetchPypi {
inherit pname version;
2020-05-08 22:47:08 +01:00
sha256 = "173wm207zyi86m2ms7vscakdi4mmjqfxqsdx1gn0j9nn0gsf241h";
2018-02-06 10:32:44 +00:00
};
# 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 ];
};
}