mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
python.pkgs.filetype: 1.0.2 -> 1.0.3
This commit is contained in:
parent
8317d16d55
commit
52b4b07df9
1 changed files with 5 additions and 9 deletions
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in a new issue