aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/property-manager/default.nix
blob: 55d7bafc014b52dab215e97ec31053dc55a489f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 ];
  };
}