python3Packages.mixins: init at 0.1.4
This commit is contained in:
parent
e90c361511
commit
f83f0f8dfa
2 changed files with 27 additions and 0 deletions
25
pkgs/development/python-modules/mixins/default.nix
Normal file
25
pkgs/development/python-modules/mixins/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mixins";
|
||||
version = "0.1.4";
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -5951,6 +5951,8 @@ self: super: with self; {
|
|||
|
||||
mitogen = callPackage ../development/python-modules/mitogen { };
|
||||
|
||||
mixins = callPackage ../development/python-modules/mixins { };
|
||||
|
||||
mixpanel = callPackage ../development/python-modules/mixpanel { };
|
||||
|
||||
mizani = callPackage ../development/python-modules/mizani { };
|
||||
|
|
Loading…
Reference in a new issue