2017-04-26 13:26:34 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchurl
|
|
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "constantly";
|
|
|
|
name = "${pname}-${version}";
|
2017-04-26 13:26:34 +01:00
|
|
|
version = "15.1.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://pypi/c/constantly/${name}.tar.gz";
|
|
|
|
sha256 = "0dgwdla5kfpqz83hfril716inm41hgn9skxskvi77605jbmp4qsq";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/twisted/constantly;
|
|
|
|
description = "symbolic constant support";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ ];
|
|
|
|
};
|
|
|
|
}
|