Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / ajpy / default.nix
blob6ae4a11322f979fbc91a0d9b11632babce64e828
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "ajpy";
5   version = "0.0.5";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "173wm207zyi86m2ms7vscakdi4mmjqfxqsdx1gn0j9nn0gsf241h";
11   };
13   # ajpy doesn't have tests
14   doCheck = false;
16   meta = with lib; {
17     description = "AJP package crafting library";
18     homepage = "https://github.com/hypn0s/AJPy/";
19     license = licenses.lgpl2;
20     maintainers = with maintainers; [ y0no ];
21   };