mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
23 lines
555 B
Nix
23 lines
555 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder, mock }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mock-open";
|
|
version = "1.3.1";
|
|
|
|
# no tests in PyPI tarball
|
|
src = fetchFromGitHub {
|
|
owner = "nivbend";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0ikhrhlkl5c7qbigpsv44jw89ws1z7j06gzyg5dh1ki533ifbjm2";
|
|
};
|
|
|
|
propagatedBuildInputs = lib.optional (pythonOlder "3.3") mock;
|
|
|
|
meta = with lib; {
|
|
homepage = https://github.com/nivbend/mock-open;
|
|
description = "A better mock for file I/O";
|
|
license = licenses.mit;
|
|
};
|
|
}
|