Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 482 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, 5}: 6 7buildPythonPackage rec { 8 pname = "pycountry"; 9 version = "20.7.3"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "0hnbabsmqimx5hqh0jbd2f64i8fhzhhbrvid57048hs5sd9ll241"; 14 }; 15 16 meta = with stdenv.lib; { 17 homepage = "https://bitbucket.org/flyingcircus/pycountry"; 18 description = "ISO country, subdivision, language, currency and script definitions and their translations"; 19 license = licenses.lgpl2; 20 }; 21 22}