summary refs log tree commit diff
path: root/pkgs/development/python-modules/ajpy/default.nix
blob: 5f42646dd9982d3ff031d5236e96d5f2b4871932 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, 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 stdenv.lib; {
    description = "AJP package crafting library";
    homepage = "https://github.com/hypn0s/AJPy/";
    license = licenses.lgpl2;
    maintainers = with maintainers; [ y0no ];
  };
}