Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 22 lines 618 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, pytest, pytestrunner, six, regex}: 2 3buildPythonPackage rec { 4 pname = "rebulk"; 5 version = "2.0.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1b0d526859ef3e8647f37c606d7ae7c32259e370b3f1519e4219a3ba72740aec"; 10 }; 11 12 # Some kind of trickery with imports that doesn't work. 13 doCheck = false; 14 buildInputs = [ pytest pytestrunner ]; 15 propagatedBuildInputs = [ six regex ]; 16 17 meta = with stdenv.lib; { 18 homepage = https://github.com/Toilal/rebulk/; 19 license = licenses.mit; 20 description = "Advanced string matching from simple patterns"; 21 }; 22}