mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
Merge pull request #25883 from unaizalakain/init-enzyme
enzyme: init at 0.4.1
This commit is contained in:
commit
6f447ed6cf
21
pkgs/development/python-modules/enzyme/default.nix
Normal file
21
pkgs/development/python-modules/enzyme/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, fetchPypi, buildPythonPackage }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "enzyme";
|
||||||
|
version = "0.4.1";
|
||||||
|
|
||||||
|
# Tests rely on files obtained over the network
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1fv2kh2v4lwj0hhrhj9pib1pdjh01yr4xgyljhx11l94gjlpy5pj";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/Diaoul/enzyme;
|
||||||
|
license = with stdenv.lib; licenses.asl20;
|
||||||
|
description = "Python video metadata parser";
|
||||||
|
};
|
||||||
|
}
|
@ -6463,6 +6463,8 @@ in {
|
|||||||
propagatedBuildInputs = with self; [ configparser ];
|
propagatedBuildInputs = with self; [ configparser ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enzyme = callPackage ../development/python-modules/enzyme {};
|
||||||
|
|
||||||
escapism = buildPythonPackage rec {
|
escapism = buildPythonPackage rec {
|
||||||
name = "escapism-${version}";
|
name = "escapism-${version}";
|
||||||
version = "0.0.1";
|
version = "0.0.1";
|
||||||
|
Loading…
Reference in New Issue
Block a user