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/constantly/default.nix

18 lines
416 B

{ lib, buildPythonPackage, fetchPypi
}:
buildPythonPackage rec {
pname = "constantly";
version = "15.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "0dgwdla5kfpqz83hfril716inm41hgn9skxskvi77605jbmp4qsq";
};
meta = with lib; {
homepage = "https://github.com/twisted/constantly";
description = "symbolic constant support";
license = licenses.mit;
maintainers = [ ];
};
}