at 18.03-beta 812 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, jellyfish 5}: 6 7buildPythonPackage rec { 8 pname = "us"; 9 version = "1.0.0"; 10 11 propagatedBuildInputs = [ jellyfish ]; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "1niglalkp7pinibzbxjdz9mxx9qmwkrh8884dag3kr72cfkrpp09"; 16 }; 17 18 meta = { 19 description = "A package for easily working with US and state metadata"; 20 longDescription = '' 21 all US states and territories, postal abbreviations, Associated Press style 22 abbreviations, FIPS codes, capitals, years of statehood, time zones, phonetic 23 state name lookup, is contiguous or continental, URLs to shapefiles for state, 24 census, congressional districts, counties, and census tracts 25 ''; 26 homepage = https://github.com/unitedstates/python-us/; 27 license = lib.licenses.bsd3; 28 }; 29}