pythonPackages.rawkit: init at 0.6.0
This commit is contained in:
parent
8ce4aa2e42
commit
e78a7579f7
28
pkgs/development/python-modules/rawkit/default.nix
Normal file
28
pkgs/development/python-modules/rawkit/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4280,6 +4280,8 @@ in {
|
|||||||
|
|
||||||
raven = callPackage ../development/python-modules/raven { };
|
raven = callPackage ../development/python-modules/raven { };
|
||||||
|
|
||||||
|
rawkit = callPackage ../development/python-modules/rawkit { };
|
||||||
|
|
||||||
rethinkdb = buildPythonPackage rec {
|
rethinkdb = buildPythonPackage rec {
|
||||||
name = "rethinkdb-${version}";
|
name = "rethinkdb-${version}";
|
||||||
version = "2.3.0.post6";
|
version = "2.3.0.post6";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user