nixpkgs/pkgs/development/python-modules/rebulk/default.nix

23 lines
606 B
Nix
Raw Normal View History

2017-06-18 14:18:40 +02:00
{ stdenv, buildPythonPackage, fetchPypi, pytest, pytestrunner, six, regex}:
buildPythonPackage rec {
pname = "rebulk";
version = "1.0.0";
2017-06-18 14:18:40 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "162rad86slg4gmzxy33pnyyzm4hhcszcpjpw1vk79f3gxzvy8j8x";
2017-06-18 14:18:40 +02:00
};
# Some kind of trickery with imports that doesn't work.
doCheck = false;
buildInputs = [ pytest pytestrunner ];
propagatedBuildInputs = [ six regex ];
meta = with stdenv.lib; {
homepage = https://github.com/Toilal/rebulk/;
2017-06-18 14:18:40 +02:00
license = licenses.mit;
description = "Advanced string matching from simple patterns";
};
}