Files

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

26 lines
576 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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;
};
}