python.pkgs.pyfakefs: 3.5.5 -> 3.5.6

This commit is contained in:
Robert Schütz 2019-01-13 15:34:01 +01:00
parent 63fbdaf447
commit 15eb4c361c

View File

@ -1,16 +1,12 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, python, pytest, glibcLocales }: { stdenv, buildPythonPackage, fetchPypi, python, pytest, glibcLocales }:
buildPythonPackage rec { buildPythonPackage rec {
version = "3.5.5"; version = "3.5.6";
pname = "pyfakefs"; pname = "pyfakefs";
# no tests in PyPI tarball src = fetchPypi {
# https://github.com/jmcgeheeiv/pyfakefs/pull/361 inherit pname version;
src = fetchFromGitHub { sha256 = "efe9c318b2a37ae498a555889684c30ccb6a1b06bd391cb3baf0eb5ba68e9062";
owner = "jmcgeheeiv";
repo = pname;
rev = "v${version}";
sha256 = "1pww444ih4bf84a0jgl1r446mjywhlls890mnw76flx8maahlik1";
}; };
postPatch = '' postPatch = ''