nixpkgs/pkgs/development/python-modules/affine/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
530 B
Nix
Raw Normal View History

2018-11-25 09:12:22 +00:00
{ buildPythonPackage, pytest, lib, fetchPypi }:
buildPythonPackage rec {
pname = "affine";
version = "2.3.1";
2018-11-25 09:12:22 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-1nbeZhV61q+Z/9lOD1Tonfw1sPtyUurS7QrS3KQxvdA=";
2018-11-25 09:12:22 +00:00
};
checkInputs = [ pytest ];
checkPhase = "py.test";
meta = with lib; {
description = "Matrices describing affine transformation of the plane";
license = licenses.bsd3;
homepage = "https://github.com/sgillies/affine";
2018-11-25 09:12:22 +00:00
maintainers = with maintainers; [ mredaelli ];
};
}