aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/affine/default.nix
blob: e2fd802cf80eb00123cbc64f5bbb790bbef7640e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ buildPythonPackage, pytest, lib, fetchPypi }:

buildPythonPackage rec {
  pname = "affine";
  version = "2.2.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "146slzpj2b220dmbmrxib030wymvplawxzn7gcgnbahgm500y3gz";
  };

  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 ];
  };

}