python.pkgs.filetype: 1.0.2 -> 1.0.3

This commit is contained in:
Robert Schütz 2019-02-06 16:56:43 +01:00
parent 8317d16d55
commit 52b4b07df9

View file

@ -1,20 +1,16 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchPypi
, python
}:
buildPythonPackage rec {
pname = "filetype";
version = "1.0.2";
version = "1.0.3";
# No tests in PyPI tarball
# See https://github.com/h2non/filetype.py/pull/33
src = fetchFromGitHub {
owner = "h2non";
repo = "filetype.py";
rev = "v${version}";
sha256 = "000gl3q2cadfnmqnbxg31ppc3ak8blzb4nfn75faxbp7b6r5qgr2";
src = fetchPypi {
inherit pname version;
sha256 = "74ccbd9ca5c95aad5665eee2f173fb1930226a12f05b0bc7380b1d456a86fcdf";
};
checkPhase = ''