My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/enum-compat/default.nix

20 lines
513 B

{ lib, buildPythonPackage, fetchPypi, enum34 }:
buildPythonPackage rec {
pname = "enum-compat";
version = "0.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "3677daabed56a6f724451d585662253d8fb4e5569845aafa8bb0da36b1a8751e";
};
propagatedBuildInputs = [ enum34 ];
meta = with lib; {
homepage = "https://github.com/jstasiak/enum-compat";
description = "enum/enum34 compatibility package";
license = licenses.mit;
maintainers = with maintainers; [ abbradar ];
};
}