nixpkgs/pkgs/development/python-modules/rebulk/default.nix
R. RyanTM 20576db4b3 python36Packages.rebulk: 0.9.0 -> 1.0.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.6-rebulk/versions
2018-10-24 10:15:01 +02:00

23 lines
606 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, pytest, pytestrunner, six, regex}:
buildPythonPackage rec {
pname = "rebulk";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "162rad86slg4gmzxy33pnyyzm4hhcszcpjpw1vk79f3gxzvy8j8x";
};
# 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/;
license = licenses.mit;
description = "Advanced string matching from simple patterns";
};
}