your_spotify: 1.11.0 -> 1.12.0 (#366529)
[NixPkgs.git] / pkgs / development / python-modules / property-manager / default.nix
blob71fa0e1aeddbbe4c3a89c899264db761f7ba3085
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   humanfriendly,
6   verboselogs,
7   coloredlogs,
8   pytest,
9   pytest-cov-stub,
12 buildPythonPackage rec {
13   pname = "property-manager";
14   version = "3.0";
15   format = "setuptools";
17   src = fetchFromGitHub {
18     owner = "xolox";
19     repo = "python-property-manager";
20     rev = version;
21     sha256 = "1v7hjm7qxpgk92i477fjhpcnjgp072xgr8jrgmbrxfbsv4cvl486";
22   };
24   propagatedBuildInputs = [
25     coloredlogs
26     humanfriendly
27     verboselogs
28   ];
29   nativeCheckInputs = [
30     pytest
31     pytest-cov-stub
32   ];
34   meta = with lib; {
35     description = "Useful property variants for Python programming";
36     homepage = "https://github.com/xolox/python-property-manager";
37     license = licenses.mit;
38     maintainers = with maintainers; [ eyjhb ];
39   };