mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
pubs: pin pyfakefs version
This commit is contained in:
parent
8b85031f07
commit
59bfd1246e
@ -1,7 +1,24 @@
|
||||
{ stdenv, fetchFromGitHub, python3Packages }:
|
||||
{ stdenv, fetchFromGitHub, python3 }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
name = "pubs-${version}";
|
||||
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 {
|
||||
pname = "pubs";
|
||||
version = "0.7.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
@ -13,9 +30,10 @@ python3Packages.buildPythonApplication rec {
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
dateutil configobj bibtexparser pyyaml requests beautifulsoup4
|
||||
pyfakefs ddt
|
||||
];
|
||||
|
||||
checkInputs = with python3Packages; [ pyfakefs ddt ];
|
||||
|
||||
preCheck = ''
|
||||
# API tests require networking
|
||||
rm tests/test_apis.py
|
||||
@ -29,6 +47,5 @@ python3Packages.buildPythonApplication rec {
|
||||
homepage = https://github.com/pubs/pubs;
|
||||
license = licenses.lgpl3;
|
||||
maintainers = with maintainers; [ gebner ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user