Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 471 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "testpath"; 8 version = "0.4.4"; 9 format = "wheel"; 10 11 src = fetchPypi { 12 inherit pname version format; 13 sha256 = "bfcf9411ef4bf3db7579063e0546938b1edda3d69f4e1fb8756991f5951f85d4"; 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}