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
27 lines
579 B
Nix
27 lines
579 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mixins";
|
|
version = "0.1.4";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-SmYYRzo6wClQBMc2oRgO0CQEHOxWe8GFL24TPa6A4NQ=";
|
|
};
|
|
|
|
pythonImportsCheck = [
|
|
"mixins"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/nickderobertis/py-mixins";
|
|
description = "Mixin classes which may be added to your own classes to add certain functionality to them";
|
|
maintainers = with maintainers; [ aanderse ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|