1{ stdenv, buildPythonPackage, fetchPypi
2}:
3buildPythonPackage rec {
4 pname = "constantly";
5 version = "15.1.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0dgwdla5kfpqz83hfril716inm41hgn9skxskvi77605jbmp4qsq";
10 };
11
12 meta = with stdenv.lib; {
13 homepage = "https://github.com/twisted/constantly";
14 description = "symbolic constant support";
15 license = licenses.mit;
16 maintainers = [ ];
17 };
18}