Files
nixpkgs/pkgs/development/python-modules/multidict/default.nix
T

28 lines
554 B
Nix
Raw Normal View History

2016-12-11 20:05:52 +01:00
{ lib
2018-01-22 16:08:37 +01:00
, fetchPypi
2016-12-11 20:05:52 +01:00
, buildPythonPackage
, pytest, pytestrunner
2016-12-11 20:05:52 +01:00
, isPy3k
}:
2018-01-28 14:08:30 +01:00
buildPythonPackage rec {
2016-12-11 20:05:52 +01:00
pname = "multidict";
2018-06-12 18:47:03 +02:00
version = "4.3.1";
2016-12-11 20:05:52 +01:00
2018-01-22 16:08:37 +01:00
src = fetchPypi {
inherit pname version;
2018-06-12 18:47:03 +02:00
sha256 = "5ba766433c30d703f6b2c17eb0b6826c6f898e5f58d89373e235f07764952314";
2016-12-11 20:05:52 +01:00
};
checkInputs = [ pytest pytestrunner ];
2016-12-11 20:05:52 +01:00
disabled = !isPy3k;
2018-01-28 14:08:30 +01:00
meta = with lib; {
2016-12-11 20:05:52 +01:00
description = "Multidict implementation";
homepage = https://github.com/aio-libs/multidict/;
2018-01-28 14:08:30 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
2016-12-11 20:05:52 +01:00
};
}