summary refs log blame commit diff
path: root/pkgs/development/python-modules/iso8601/default.nix
blob: d0a74f400bba7b150e91f55bf0209b1f2a1f159b (plain) (tree)
1
2
3
4
5
6
7
8
9


                    
                 



                        
                     


                          
                                                                                

    


                   
 
                                   
 


                                     
                                                          

                                                   
                                            
    
 
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "iso8601";
  version = "0.1.14";

  src = fetchPypi {
    inherit pname version;
    sha256 = "8aafd56fa0290496c5edbb13c311f78fa3a241f0853540da09d9363eae3ebd79";
  };

  checkInputs = [
    pytestCheckHook
  ];

  pytestFlagsArray = [ "iso8601" ];

  pythonImportsCheck = [ "iso8601" ];

  meta = with lib; {
    description = "Simple module to parse ISO 8601 dates";
    homepage = "https://pyiso8601.readthedocs.io/";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}