5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, jellyfish
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pytz
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "us";
|
|
version = "3.1.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-40eWPo0kocp0N69EP6aFkXdoR7UMhlDY7w61NILnBcI=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Upstream spins jellyfish
|
|
substituteInPlace setup.py \
|
|
--replace "jellyfish==" "jellyfish>="
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
jellyfish
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytz
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"us"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A package for easily working with US and state metadata";
|
|
longDescription = ''
|
|
All US states and territories, postal abbreviations, Associated Press style
|
|
abbreviations, FIPS codes, capitals, years of statehood, time zones, phonetic
|
|
state name lookup, is contiguous or continental, URLs to shapefiles for state,
|
|
census, congressional districts, counties, and census tracts.
|
|
'';
|
|
homepage = "https://github.com/unitedstates/python-us/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|