about summary refs log tree commit diff
path: root/pkgs/development/python-modules/mixins/default.nix
blob: 46af556fd11afb5be9fb7c785f0909aba13066b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ 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;
  };
}