linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / testpath / default.nix
blobc95bd0c78b66f6c2192ff3c51a8ff3ac0e8d8499
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "testpath";
8   version = "0.4.4";
9   format = "wheel";
11   src = fetchPypi {
12     inherit pname version format;
13     sha256 = "bfcf9411ef4bf3db7579063e0546938b1edda3d69f4e1fb8756991f5951f85d4";
14   };
16   meta = with lib; {
17     description = "Test utilities for code working with files and commands";
18     license = licenses.mit;
19     homepage = "https://github.com/jupyter/testpath";
20   };