mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 03:03:42 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
23 lines
505 B
Nix
23 lines
505 B
Nix
{ 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;
|
|
maintainers = with maintainers; [ y0no ];
|
|
};
|
|
}
|