Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / us / default.nix
blobe489879bd50239063e105fefc4c30c226ee1a4ab
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , jellyfish
5 , pytestCheckHook
6 , pythonOlder
7 , pytz
8 }:
10 buildPythonPackage rec {
11   pname = "us";
12   version = "3.1.1";
13   format = "setuptools";
15   disabled = pythonOlder "3.6";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-40eWPo0kocp0N69EP6aFkXdoR7UMhlDY7w61NILnBcI=";
20   };
22   postPatch = ''
23     # Upstream spins jellyfish
24     substituteInPlace setup.py \
25       --replace "jellyfish==" "jellyfish>="
26   '';
28   propagatedBuildInputs = [
29     jellyfish
30   ];
32   nativeCheckInputs = [
33     pytestCheckHook
34     pytz
35   ];
37   pythonImportsCheck = [
38     "us"
39   ];
41   meta = with lib; {
42     description = "A package for easily working with US and state metadata";
43     longDescription = ''
44       All US states and territories, postal abbreviations, Associated Press style
45       abbreviations, FIPS codes, capitals, years of statehood, time zones, phonetic
46       state name lookup, is contiguous or continental, URLs to shapefiles for state,
47       census, congressional districts, counties, and census tracts.
48     '';
49     homepage = "https://github.com/unitedstates/python-us/";
50     license = licenses.bsd3;
51     maintainers = with maintainers; [ ];
52   };