ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / configclass / default.nix
blob9856be48ac3d0847d81df4e90429d4ded5fd4c3d
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , mergedict
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "configclass";
10   version = "0.2.0";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "sha256-aoDKBuDxJCeXbVwCXhse6FCbDDM30/Xa8p9qRvDkWBk=";
15   };
17   propagatedBuildInputs = [ mergedict ];
19   checkInputs = [ pytestCheckHook ];
21   pythonImportsCheck = [ "configclass" ];
23   meta = with lib; {
24     description = "A Python to class to hold configuration values";
25     homepage = "https://github.com/schettino72/configclass/";
26     license = licenses.mit;
27     maintainers = with maintainers; [ onny ];
28   };