depot/third_party/nixpkgs/pkgs/development/python-modules/showit/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

39 lines
714 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, numpy
, matplotlib
, pytest
}:
buildPythonPackage rec {
pname = "showit";
version = "1.1.4";
src = fetchFromGitHub {
owner = "freeman-lab";
repo = pname;
rev = "ef76425797c71fbe3795b4302c49ab5be6b0bacb"; # no tags in repo
sha256 = "0xd8isrlwwxlgji90lly1sq4l2a37rqvhsmyhv7bd3aj1dyjmdr6";
};
propagatedBuildInputs = [
numpy
matplotlib
];
checkInputs = [
pytest
];
checkPhase = ''
pytest test
'';
meta = with lib; {
description = "simple and sensible display of images";
homepage = "https://github.com/freeman-lab/showit";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}