mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.iso-639: add setuptools dependency
This commit is contained in:
parent
f772fe52c3
commit
e853270354
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, fetchPypi, buildPythonPackage }:
|
||||
{ lib, fetchPypi, buildPythonPackage, setuptools }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "iso-639";
|
||||
|
@ -9,6 +9,8 @@ buildPythonPackage rec {
|
|||
sha256 = "dc9cd4b880b898d774c47fe9775167404af8a85dd889d58f9008035109acce49";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ setuptools ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/noumar/iso639;
|
||||
description = "ISO 639 library for Python";
|
||||
|
|
Loading…
Reference in a new issue