Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, buildPythonPackage, fetchurl 2}: 3buildPythonPackage rec { 4 pname = "constantly"; 5 name = "${pname}-${version}"; 6 version = "15.1.0"; 7 8 src = fetchurl { 9 url = "mirror://pypi/c/constantly/${name}.tar.gz"; 10 sha256 = "0dgwdla5kfpqz83hfril716inm41hgn9skxskvi77605jbmp4qsq"; 11 }; 12 13 meta = with stdenv.lib; { 14 homepage = https://github.com/twisted/constantly; 15 description = "symbolic constant support"; 16 license = licenses.mit; 17 maintainers = [ ]; 18 }; 19}