pythonPackages.property-manager: init at 2.3.1
This commit is contained in:
parent
b0b81b0c18
commit
adfa7bd59f
2 changed files with 25 additions and 0 deletions
23
pkgs/development/python-modules/property-manager/default.nix
Normal file
23
pkgs/development/python-modules/property-manager/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{ lib, buildPythonPackage, fetchFromGitHub, humanfriendly, verboselogs, coloredlogs, pytest, pytestcov }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "property-manager";
|
||||||
|
version = "2.3.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "xolox";
|
||||||
|
repo = "python-property-manager";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0s4nwipxd8c2vp4rd8mxrj8wbycniz5ki5n177d0dbrnll5amcz0";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ coloredlogs humanfriendly verboselogs ];
|
||||||
|
checkInputs = [ pytest pytestcov ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Useful property variants for Python programming";
|
||||||
|
homepage = https://github.com/xolox/python-property-manager;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ eyjhb ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4085,6 +4085,8 @@ in {
|
||||||
|
|
||||||
prettytable = callPackage ../development/python-modules/prettytable { };
|
prettytable = callPackage ../development/python-modules/prettytable { };
|
||||||
|
|
||||||
|
property-manager = callPackage ../development/python-modules/property-manager { };
|
||||||
|
|
||||||
prompt_toolkit = let
|
prompt_toolkit = let
|
||||||
filename = if isPy3k then ../development/python-modules/prompt_toolkit else ../development/python-modules/prompt_toolkit/1.nix;
|
filename = if isPy3k then ../development/python-modules/prompt_toolkit else ../development/python-modules/prompt_toolkit/1.nix;
|
||||||
in callPackage filename { };
|
in callPackage filename { };
|
||||||
|
|
Loading…
Reference in a new issue