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
28 lines
616 B
Nix
28 lines
616 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, six
|
|
, nose
|
|
, coverage
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aadict";
|
|
version = "0.2.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "013pn9ii6mkql6khgdvsd1gi7zmya418fhclm5fp7dfvann2hwx7";
|
|
};
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
nativeCheckInputs = [ nose coverage ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/metagriffin/aadict";
|
|
description = "An auto-attribute dict (and a couple of other useful dict functions).";
|
|
maintainers = with maintainers; [ glittershark ];
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|