blob: 8bdd50f52d258b94b2c9944bd4fae2729176b668 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "testpath";
version = "0.4.2";
format = "wheel";
src = fetchPypi {
inherit pname version format;
sha256 = "46c89ebb683f473ffe2aab0ed9f12581d4d078308a3cb3765d79c6b2317b0109";
};
meta = with stdenv.lib; {
description = "Test utilities for code working with files and commands";
license = licenses.mit;
homepage = https://github.com/jupyter/testpath;
};
}
|