1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.affine: init at 2.2.1

This commit is contained in:
Massimo Redaelli 2018-11-25 10:12:22 +01:00 committed by Massimo Redaelli
parent 233a4ed573
commit 962bc254a0
2 changed files with 24 additions and 0 deletions

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

View file

@ -744,6 +744,8 @@ in {
adal = callPackage ../development/python-modules/adal { };
affine = callPackage ../development/python-modules/affine { };
aioconsole = callPackage ../development/python-modules/aioconsole { };
aiodns = callPackage ../development/python-modules/aiodns { };