Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 20 lines 448 B view raw
1{ stdenv, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "pytzdata"; 5 version = "2019.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "fac06f7cdfa903188dc4848c655e4adaee67ee0f2fe08e7daf815cf2a761ee5e"; 10 }; 11 12 # No tests 13 doCheck = false; 14 15 meta = with stdenv.lib; { 16 description = "Timezone database for Python"; 17 homepage = https://github.com/sdispater/pytzdata; 18 license = licenses.mit; 19 }; 20}