pythonPackages.rawkit: init at 0.6.0

This commit is contained in:
Johannes Frankenau 2018-03-09 10:21:03 +01:00
parent 8ce4aa2e42
commit e78a7579f7
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ stdenv, fetchPypi, buildPythonPackage
, libraw
, pytest, mock }:
buildPythonPackage rec {
pname = "rawkit";
version = "0.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "0vrhrpr70i61y5q5ysk341x1539ff1q1k82g59zq69lv16s0f76s";
};
buildInputs = [ libraw ];
checkInputs = [ pytest mock ];
checkPhase = ''
py.test tests
'';
meta = with stdenv.lib; {
description = "CTypes based LibRaw bindings for Python";
homepage = https://rawkit.readthedocs.org/;
license = licenses.mit;
maintainers = with maintainers; [ jfrankenau ];
};
}

View File

@ -4280,6 +4280,8 @@ in {
raven = callPackage ../development/python-modules/raven { };
rawkit = callPackage ../development/python-modules/rawkit { };
rethinkdb = buildPythonPackage rec {
name = "rethinkdb-${version}";
version = "2.3.0.post6";