pythonPackages.affine: init at 2.2.1
This commit is contained in:
committed by
Massimo Redaelli
parent
233a4ed573
commit
962bc254a0
22
pkgs/development/python-modules/affine/default.nix
Normal file
22
pkgs/development/python-modules/affine/default.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ buildPythonPackage, pytest, lib, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "affine";
|
||||
version = "2.2.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0j3mvcnmgjvvm0znqyf7xylq7i89zjf4dq0g8280xs6bwbl5cvih";
|
||||
};
|
||||
|
||||
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;
|
||||
maintainers = with maintainers; [ mredaelli ];
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user