python3Packages.baseline: init at 1.2.1

This commit is contained in:
David Reiss 2021-03-22 19:27:15 -07:00
parent 8a21ce752f
commit c58549c140
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib, buildPythonPackage, fetchFromGitHub, isPy3k, pytestCheckHook }:
buildPythonPackage rec {
pname = "baseline";
version = "1.2.1";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "dmgass";
repo = "baseline";
rev = "95a0b71806ed16310eb0f27bc48aa5e21f731423";
sha256 = "0qjg46ipyfjflvjqzqr5p7iylwwqn2mhhrq952d01vi8wvfds10d";
};
checkInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Easy String Baseline";
longDescription = ''
This tool streamlines creation and maintenance of tests which compare
string output against a baseline.
'';
homepage = "https://github.com/dmgass/baseline";
license = licenses.mit;
maintainers = with maintainers; [ dnr ];
};
}

View file

@ -906,6 +906,8 @@ in {
base58 = callPackage ../development/python-modules/base58 { };
baseline = callPackage ../development/python-modules/baseline { };
baselines = callPackage ../development/python-modules/baselines { };
basemap = callPackage ../development/python-modules/basemap { };