1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "mixins";
9 version = "0.1.4";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-SmYYRzo6wClQBMc2oRgO0CQEHOxWe8GFL24TPa6A4NQ=";
15 };
16
17 pythonImportsCheck = [ "mixins" ];
18
19 meta = with lib; {
20 homepage = "https://github.com/nickderobertis/py-mixins";
21 description = "Mixin classes which may be added to your own classes to add certain functionality to them";
22 maintainers = with maintainers; [ aanderse ];
23 license = licenses.mit;
24 };
25}