Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 20 lines 448 B view raw
1{ stdenv, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "pytzdata"; 5 version = "2019.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "f0469062f799c66480fcc7eae69a8270dc83f0e6522c0e70db882d6bd708d378"; 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}