nixpkgs/pkgs/development/python-modules/rebulk/default.nix
R. RyanTM 36112d20a0 python37Packages.rebulk: 1.0.0 -> 1.0.1
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.7-rebulk/versions
2019-08-20 10:57:44 -07:00

23 lines
606 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, pytest, pytestrunner, six, regex}:
buildPythonPackage rec {
pname = "rebulk";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "11164sy9vwphf7iw60n4hmns2q6anazrkhc15lwi6sb2qmkjc541";
};
# 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";
};
}