Files

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

26 lines
466 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "ajpy";
version = "0.0.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "173wm207zyi86m2ms7vscakdi4mmjqfxqsdx1gn0j9nn0gsf241h";
};
# ajpy doesn't have tests
doCheck = false;
meta = with lib; {
description = "AJP package crafting library";
homepage = "https://github.com/hypn0s/AJPy/";
license = licenses.lgpl2;
};
}