ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pluginbase / default.nix
blobb8df04a1b32f6203190bbcd92d61037ef07da9e9
1 { lib, fetchPypi, buildPythonPackage, pytest }:
3 buildPythonPackage rec {
4   version = "1.0.1";
5   pname = "pluginbase";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "ff6c33a98fce232e9c73841d787a643de574937069f0d18147028d70d7dee287";
10   };
12   checkInputs = [ pytest ];
14   checkPhase = ''
15     cd tests
16     PYTHONPATH=.. pytest
17   '';
19   meta = with lib; {
20     homepage = "https://github.com/mitsuhiko/pluginbase";
21     description = "A support library for building plugins sytems in Python";
22     license = licenses.bsd3;
23     platforms = platforms.all;
24   };