python.pkgs.appdirs: 1.4.0 -> 1.4.3

This commit is contained in:
Frederik Rietdijk 2017-06-01 18:01:43 +02:00
parent 10ee7b2bda
commit f069498c3a
2 changed files with 22 additions and 14 deletions

View file

@ -0,0 +1,21 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "appdirs";
version = "1.4.3";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "9e5896d1372858f8dd3344faf4e5014d21849c756c8d5701f78f8a103b372d92";
};
meta = {
description = "A python module for determining appropriate platform-specific dirs";
homepage = http://github.com/ActiveState/appdirs;
license = lib.licenses.mit;
};
}

View file

@ -1002,20 +1002,7 @@ in {
};
};
appdirs = buildPythonPackage rec {
name = "appdirs-1.4.0";
src = pkgs.fetchurl {
url = "mirror://pypi/a/appdirs/appdirs-1.4.0.tar.gz";
sha256 = "8fc245efb4387a4e3e0ac8ebcc704582df7d72ff6a42a53f5600bbb18fdaadc5";
};
meta = {
description = "A python module for determining appropriate platform-specific dirs";
homepage = http://github.com/ActiveState/appdirs;
license = licenses.mit;
};
};
appdirs = callPackage ../development/python-modules/appdirs { };
application = buildPythonPackage rec {
pname = "python-application";