Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / affine / default.nix
blob89062cde4d9774e5e512543f6d33db58f3f845f1
1 { buildPythonPackage, pytest, lib, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "affine";
5   version = "2.3.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "00jil4q3b17qml6azim7s7zar6qb1vhsf0g888y637m23bpms11f";
10   };
12   checkInputs = [ pytest ];
13   checkPhase = "py.test";
15   meta = with lib; {
16     description = "Matrices describing affine transformation of the plane";
17     license = licenses.bsd3;
18     homepage = "https://github.com/sgillies/affine";
19     maintainers = with maintainers; [ mredaelli ];
20   };