1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-24 10:10:37 +03:00
nixpkgs/pkgs/development/python-modules/ajpy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
480 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi }:
2018-02-06 11:32:44 +01:00
buildPythonPackage rec {
pname = "ajpy";
2020-05-08 21:47:08 +00:00
version = "0.0.5";
2018-02-06 11:32:44 +01:00
src = fetchPypi {
inherit pname version;
2020-05-08 21:47:08 +00:00
sha256 = "173wm207zyi86m2ms7vscakdi4mmjqfxqsdx1gn0j9nn0gsf241h";
2018-02-06 11:32:44 +01:00
};
# ajpy doesn't have tests
doCheck = false;
meta = with lib; {
2018-02-06 11:32:44 +01:00
description = "AJP package crafting library";
homepage = "https://github.com/hypn0s/AJPy/";
license = licenses.lgpl2;
maintainers = with maintainers; [ y0no ];
};
}