Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / enum-compat / default.nix
bloba8409353d48975962509f01a121d557da98345cf
1 { lib, buildPythonPackage, fetchPypi, enum34 }:
3 buildPythonPackage rec {
4   pname = "enum-compat";
5   version = "0.0.3";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "3677daabed56a6f724451d585662253d8fb4e5569845aafa8bb0da36b1a8751e";
11   };
13   propagatedBuildInputs = [ enum34 ];
15   meta = with lib; {
16     homepage = "https://github.com/jstasiak/enum-compat";
17     description = "enum/enum34 compatibility package";
18     license = licenses.mit;
19     maintainers = with maintainers; [ abbradar ];
20   };