nixpkgs/pkgs/development/python-modules/pika-pool/default.nix
Frederik Rietdijk ced21f5e1a pythonPackages: remove name attribute`
The `buildPython*` function computes name from `pname` and `version`.
This change removes `name` attribute from all expressions in
`pkgs/development/python-modules`.

While at it, some other minor changes were made as well, such as
replacing `fetchurl` calls with `fetchPypi`.
2018-06-23 18:14:26 +02:00

24 lines
511 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, pika
}:
buildPythonPackage rec {
pname = "pika-pool";
version = "0.1.3";
src = fetchPypi {
inherit pname version;
sha256 = "f3985888cc2788cdbd293a68a8b5702a9c955db6f7b8b551aeac91e7f32da397";
};
# Tests require database connections
doCheck = false;
propagatedBuildInputs = [ pika ];
meta = with stdenv.lib; {
homepage = https://github.com/bninja/pika-pool;
license = licenses.bsdOriginal;
description = "Pools for pikas.";
};
}