1{ stdenv, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "pytzdata"; 5 version = "2018.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "4e2cceb54335cd6c28caea46b15cd592e2aec5e8b05b0241cbccfb1b23c02ae7"; 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}