From 3ace9a76167a12aafd8caa96ce493691c02f7f01 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Tue, 8 Jan 2019 10:08:12 -0600 Subject: [PATCH] pubs: 0.7.0 -> 0.8.2 (#53658) --- pkgs/tools/misc/pubs/default.nix | 37 ++++++-------------------------- 1 file changed, 6 insertions(+), 31 deletions(-) diff --git a/pkgs/tools/misc/pubs/default.nix b/pkgs/tools/misc/pubs/default.nix index c9ab32035de4..393300ddd9e9 100644 --- a/pkgs/tools/misc/pubs/default.nix +++ b/pkgs/tools/misc/pubs/default.nix @@ -1,46 +1,21 @@ -{ stdenv, fetchFromGitHub, python3 }: +{ stdenv, fetchFromGitHub, python3Packages }: -let - python3Packages = (python3.override { - packageOverrides = self: super: { - # https://github.com/pubs/pubs/issues/131 - pyfakefs = super.pyfakefs.overridePythonAttrs (oldAttrs: rec { - version = "3.3"; - src = self.fetchPypi { - pname = "pyfakefs"; - inherit version; - sha256 = "e3e198dea5e0d5627b73ba113fd0b139bb417da6bc15d920b2c873143d2f12a6"; - }; - postPatch = ""; - doCheck = false; - }); - }; - }).pkgs; - -in python3Packages.buildPythonApplication rec { +python3Packages.buildPythonApplication rec { pname = "pubs"; - version = "0.7.0"; + version = "0.8.2"; src = fetchFromGitHub { owner = "pubs"; repo = "pubs"; rev = "v${version}"; - sha256 = "0n5wbjx9wqy6smfg625mhma739jyg7c92766biaiffp0a2bzr475"; + sha256 = "16zwdqfbmlla6906g3a57a4nj8wnl11fq78r20qms717bzv211j0"; }; propagatedBuildInputs = with python3Packages; [ - dateutil configobj bibtexparser pyyaml requests beautifulsoup4 + argcomplete dateutil configobj feedparser bibtexparser pyyaml requests six beautifulsoup4 ]; - checkInputs = with python3Packages; [ pyfakefs ddt ]; - - preCheck = '' - # API tests require networking - rm tests/test_apis.py - - # pyfakefs works weirdly in the sandbox - export HOME=/ - ''; + checkInputs = with python3Packages; [ pyfakefs mock ddt ]; meta = with stdenv.lib; { description = "Command-line bibliography manager";