pythonPackages.iso3166: enable tests

fixes #24884
This commit is contained in:
Jörg Thalheim 2017-04-17 00:47:12 +02:00
parent 51770c85e4
commit a7d2be1471
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA

@ -1,15 +1,24 @@
{ stdenv, fetchurl, buildPythonPackage }:
{ stdenv, fetchFromGitHub, buildPythonPackage, pytest }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "iso3166";
version = "0.8";
src = fetchurl {
url = "mirror://pypi/i/${pname}/${name}.tar.gz";
sha256 = "fbeb17bed90d15b1f6d6794aa2ea458e5e273a1d29b6f4939423c97640e14933";
src = fetchFromGitHub {
owner = "deactivated";
repo = "python-iso3166";
# repo has no version tags
rev = "f04e499447bbff10af701cf3dd81f6bcdf02f7d7";
sha256 = "0zs9za9dr2nl5srxir08yibmp6nffcapmzala0fgh8ny7y6rafrx";
};
buildInputs = [ pytest ];
checkPhase = ''
py.test
'';
meta = with stdenv.lib; {
homepage = https://github.com/deactivated/python-iso3166;
description = "Self-contained ISO 3166-1 country definitions";