mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-01 16:34:15 +03:00
python.pkgs.pyfakefs: 3.5.5 -> 3.5.6
This commit is contained in:
parent
63fbdaf447
commit
15eb4c361c
@ -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 = ''
|
||||
|
Loading…
Reference in New Issue
Block a user