pythonPackages.internetarchive: 1.9.4 -> 1.9.5 (#100142)

wip/yesman
Mario Rodas 4 years ago committed by GitHub
parent 53c0d59ba5
commit a4a1b25469
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 17
      pkgs/development/python-modules/internetarchive/default.nix

@ -1,5 +1,5 @@
{ buildPythonPackage
, fetchFromGitHub
, fetchPypi
, pytest
, six
, tqdm
@ -19,14 +19,11 @@
buildPythonPackage rec {
pname = "internetarchive";
version = "1.9.4";
# Can't use pypi, data files for tests missing
src = fetchFromGitHub {
owner = "jjjake";
repo = "internetarchive";
rev = "v${version}";
sha256 = "10xlblj21hanahsmw6lfggbrbpw08pdmvdgds1p58l8xd4fazli8";
version = "1.9.5";
src = fetchPypi {
inherit pname version;
sha256 = "759053685c75e6e969d690043b82643c4016500abcbbc44e4daf52ec097a9a15";
};
propagatedBuildInputs = [
@ -50,6 +47,8 @@ buildPythonPackage rec {
LC_ALL=en_US.utf-8 pytest tests
'';
pythonImportsCheck = [ "internetarchive" ];
meta = with lib; {
description = "A Python and Command-Line Interface to Archive.org";
homepage = "https://github.com/jjjake/internetarchive";

Loading…
Cancel
Save