summary refs log tree commit diff
path: root/pkgs/development/python-modules/ajpy/default.nix
blob: 9d1905fe914b367635b1ddf7659b1615d789c16a (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.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "740e7daf728ba58dabaf4af2c4305262eb207a6e41791424a146a21396ceb9ad";
  };

  # 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 ];
  };
}