Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / gemfileparser / default.nix
bloba87073e82a91b95eae3bdc01f175be3e170fd6bf
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , pytestCheckHook
5 }:
6 buildPythonPackage rec {
7   pname = "gemfileparser";
8   version = "0.8.0";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "839592e49ea3fd985cec003ef58f8e77009a69ed7644a0c0acc94cf6dd9b8d6e";
13   };
15   nativeCheckInputs = [
16     pytestCheckHook
17   ];
19   pythonImportsCheck = [
20     "gemfileparser"
21   ];
23   meta = with lib; {
24     description = "A library to parse Ruby Gemfile, .gemspec and Cocoapod .podspec file using Python";
25     homepage = "https://github.com/gemfileparser/gemfileparser";
26     license = with licenses; [ gpl3Plus /* or */ mit ];
27     maintainers = [ ];
28   };