1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-19 07:59:24 +03:00
nixpkgs/pkgs/development/python-modules/pluginbase/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
569 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage, pytest }:
2017-04-13 01:38:01 +02:00
buildPythonPackage rec {
version = "1.0.1";
2017-04-13 01:38:01 +02:00
pname = "pluginbase";
src = fetchPypi {
inherit pname version;
sha256 = "ff6c33a98fce232e9c73841d787a643de574937069f0d18147028d70d7dee287";
2017-04-13 01:38:01 +02:00
};
2019-04-03 16:00:37 +02:00
checkInputs = [ pytest ];
checkPhase = ''
cd tests
PYTHONPATH=.. pytest
'';
meta = with lib; {
homepage = "https://github.com/mitsuhiko/pluginbase";
2017-04-13 01:38:01 +02:00
description = "A support library for building plugins sytems in Python";
license = licenses.bsd3;
platforms = platforms.all;
};
}