python3Packages.baseline: init at 1.2.1
This commit is contained in:
parent
8a21ce752f
commit
c58549c140
27
pkgs/development/python-modules/baseline/default.nix
Normal file
27
pkgs/development/python-modules/baseline/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -906,6 +906,8 @@ in {
|
|||||||
|
|
||||||
base58 = callPackage ../development/python-modules/base58 { };
|
base58 = callPackage ../development/python-modules/base58 { };
|
||||||
|
|
||||||
|
baseline = callPackage ../development/python-modules/baseline { };
|
||||||
|
|
||||||
baselines = callPackage ../development/python-modules/baselines { };
|
baselines = callPackage ../development/python-modules/baselines { };
|
||||||
|
|
||||||
basemap = callPackage ../development/python-modules/basemap { };
|
basemap = callPackage ../development/python-modules/basemap { };
|
||||||
|
Loading…
Reference in New Issue
Block a user