Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 22 lines 469 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "testpath"; 8 version = "0.4.2"; 9 format = "wheel"; 10 11 src = fetchPypi { 12 inherit pname version format; 13 sha256 = "46c89ebb683f473ffe2aab0ed9f12581d4d078308a3cb3765d79c6b2317b0109"; 14 }; 15 16 meta = with stdenv.lib; { 17 description = "Test utilities for code working with files and commands"; 18 license = licenses.mit; 19 homepage = https://github.com/jupyter/testpath; 20 }; 21 22}