about summary refs log tree commit diff
path: root/pkgs/development/python-modules/testpath/default.nix
blob: cda5abda52920d87166ac2c676cba44a38fb1f18 (plain) (blame)
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.3";
  format = "wheel";

  src = fetchPypi {
    inherit pname version format;
    sha256 = "f16b2cb3b03e1ada4fb0200b265a4446f92f3ba4b9d88ace34f51c54ab6d294e";
  };

  meta = with stdenv.lib; {
    description = "Test utilities for code working with files and commands";
    license = licenses.mit;
    homepage = https://github.com/jupyter/testpath;
  };

}