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 {
version = "3.5.5";
version = "3.5.6";
pname = "pyfakefs";
# no tests in PyPI tarball
# https://github.com/jmcgeheeiv/pyfakefs/pull/361
src = fetchFromGitHub {
owner = "jmcgeheeiv";
repo = pname;
rev = "v${version}";
sha256 = "1pww444ih4bf84a0jgl1r446mjywhlls890mnw76flx8maahlik1";
src = fetchPypi {
inherit pname version;
sha256 = "efe9c318b2a37ae498a555889684c30ccb6a1b06bd391cb3baf0eb5ba68e9062";
};
postPatch = ''