depot/third_party/nixpkgs/pkgs/development/python-modules/iso3166/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

27 lines
660 B
Nix

{ lib, fetchFromGitHub, buildPythonPackage, pytest }:
buildPythonPackage {
pname = "iso3166";
version = "0.8";
src = fetchFromGitHub {
owner = "deactivated";
repo = "python-iso3166";
# repo has no version tags
rev = "f04e499447bbff10af701cf3dd81f6bcdf02f7d7";
sha256 = "0zs9za9dr2nl5srxir08yibmp6nffcapmzala0fgh8ny7y6rafrx";
};
checkInputs = [ pytest ];
checkPhase = ''
py.test
'';
meta = with lib; {
homepage = "https://github.com/deactivated/python-iso3166";
description = "Self-contained ISO 3166-1 country definitions";
license = licenses.mit;
maintainers = with maintainers; [ zraexy ];
};
}