f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
25 lines
576 B
Nix
25 lines
576 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mixins";
|
|
version = "0.1.4";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "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;
|
|
};
|
|
}
|