pythonPackages.property-manager: init at 2.3.1

This commit is contained in:
eyjhbb@gmail.com 2019-07-23 16:57:03 +02:00
parent b0b81b0c18
commit adfa7bd59f
2 changed files with 25 additions and 0 deletions

View 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 ];
};
}

View File

@ -4085,6 +4085,8 @@ in {
prettytable = callPackage ../development/python-modules/prettytable { };
property-manager = callPackage ../development/python-modules/property-manager { };
prompt_toolkit = let
filename = if isPy3k then ../development/python-modules/prompt_toolkit else ../development/python-modules/prompt_toolkit/1.nix;
in callPackage filename { };